• cURL Charset issue.

    Updated: 2011-09-30 18:54:33
    I am pulling in a paragraph using cURL from an HTML page that is encoded using UTF-8, at first some of the quotes (smart quotes?) were displaying as weird characters. I added my meta tag defining the utf-8 charset on the page that I am displaying this content, as well as added PHP: ---------

  • getElementById('ID).value not working in ie8

    Updated: 2011-09-30 18:46:54
    I have some simple javascript code that works fine in chrome and safari, but not Ie8 Code: --------- function val2() { //var num = Number(document.getElementById('PdRows').value) alert (document.getElementById('PdRows').value) }

  • Email content filtering

    Updated: 2011-09-30 18:42:21
    Ok so somehow one of my emails got on some kind of global email harvester and i have been getting spammed to death on it. So the first thing i did of course is i started blacklisting them inside horde mail. Then i started grabbing the ip from the header and adding that to my ip blocker server...

  • Twitter horizontal ticker creating headaches

    Updated: 2011-09-30 18:14:15
    I've been going at this for a good week now, trying to figure out what the hell is going on. I have this tweet ticker code that scrolls a live feed at the very top of the header. It runs on jQuery 1.5.0. The site I have has a vertically scrollTo div for each button pressed on the navigation. ...

  • RewriteRule and Google Analytics - how?

    Updated: 2011-09-30 17:58:12
    If I have the site www.mysite.com with the following htaccess: PHP: --------- RewriteRule ^gotocompanysite\.php$ http://www.companysite.com/ [R=301,L] --------- and my visitors click on www.mysite.com/gotocompanysite.php they are redirected to companysite.com *The question is:*

  • How to get header tags to stay in a section?

    Updated: 2011-09-30 17:57:11
    http://www.countyfairgrounds.net/newjersey/newjersey.php left column I have three division header tags , and if you look at this page - and only the left sidebar. I did reuse FIRST can I do that or do I need a header 5 and is that causing the problem. I cannot figure...

  • PHP $_POST array configuration

    Updated: 2011-09-30 17:40:12
    // I'm Aware that this code is not correct it's kinda just for understanding //what I'm trying to do more so I'm trying to figure out a simpler way to code a PHP script so that the $_POST array can be easily dissected. Soo .. I have 10 input="text" fields in a form: Code: ---------

  • popup window on image click

    Updated: 2011-09-30 17:03:38
    I have a sitelock.com image on my website that when clicked on, shows info that my site is verfifed through them. However, when clicking on the image it opens up in a whole new window. Pathetic sitelock.com will offer no support in getting this in a popup window. I need some help please in...

  • Preload large background image, then fade?

    Updated: 2011-09-30 16:24:05
    Hello all, i am using CSS to stretch a background image and follow the browser window size, which works great! I came up with the idea to set a solid color (black) as the background color, then once the background image has loaded, fade into it? Here is the CSS i am using, if you could modify it...

  • Regex to replace period if last character in URL

    Updated: 2011-09-30 16:16:47
    Man, I am terrible at regex. I just don't use it enough to retain the rules/syntax. I need to sit down some day and practice all kinds of different regular expressions when I have the time. But with that said, here's what I'd like to do: I have a little function that detects email addresses...

  • RPN Help Please! (Order of Operations)

    Updated: 2011-09-30 15:33:04
    Hi, I'm trying to make a simple calculator with order of operations. I had read in the Internet and found the algorithm of RPN (Reverse Polish notation). Lets take an example: 2 * 5 - 3 + 4 So I have 2 strings array: One for numbers, and one for operations: String numsStrings{2, 5, 3,...

  • How do I unset session variables with specific index?

    Updated: 2011-09-30 15:23:41
    Let's say I have many session variable active but I only want to unset a session with index Code: --------- 'cart_'.$itemid --------- i.e. Code: --------- $_SESSION['cart_'.$itemid] ---------

  • How do I remove the first character of a string?

    Updated: 2011-09-30 15:16:23
    So say if my string was.. Code: --------- a = "Hello"; alert(a); --------- How do I get it to say;

  • Remove SHOUTING from a String

    Updated: 2011-09-30 14:59:06
    Hi, I need to remove shouting from a string, but I can't work out the preg_repalce for it, can anyone help? eg "I LOVE Cheese on Toast" should become ; "I love Cheese on Toast" Its finding a word that is ALL Capitals rather than just every capital thats foxing me..

  • MySQL Database & PHP pages

    Updated: 2011-09-30 14:03:02
    Hello all, I work for a small local business called Screen Tek (http://www.screentek.net). We are currently looking for someone who can give 1 on 1 assistance in helping us to create and edit several pages that work with a MySQL database. *What we have: * - The full database with sample...

  • jQuery Show / Hide Plugin

    Updated: 2011-09-28 23:09:19
    Due to popular demand here’s a re-written version of the tutorial I wrote over a year ago on how to show and hide content using jQuery. After I first published the post I’ve had a lot of requests as to … Continue reading

  • Web Development News Week 38, July 2011

    Updated: 2011-09-28 07:38:22
    Web development news for the 38th week of 2011: JavaScript JavaScript Weekly, Issue #45 - September 23, 2011 <pV8 the technology behind Node.js has fixed a 1gb memory limit, learning JavaScript articles, faster performance with memoization, namespacing patterns, … YUI has released version 3.4.1. HTML 5 HTML 5 Weekly, Issue #5 - September 21, 2011

  • Generic project management – really?

    Updated: 2011-09-25 18:10:30
    I heard a lot of people saying that a PM is a PM. And if you manage one type of projects, you can manage any type of project. But I don’t think that’s true. And I will argue this opinion in the current article. First of all let me tell you that I understand where [...]

  • Country drop down list with php function

    Updated: 2011-09-20 20:09:12
    I had a project recently that required the user to select their country from a drop down list and store the data in a database. It was such a long process setting up the PHP switch statement that I thought … Continue reading

  • Display breadcrumbs on your site using PHP

    Updated: 2011-09-20 20:09:11
    When you have a fully dynamic site it’s useful to show the user where they are by breaking down the URL structure so they can navigate backwards through the site. For example this url: http://papermashup.com/categories/jquery/ shows that ‘jquery’ is part … Continue reading

  • Create a URL from a string of text with PHP and mod_rewrite

    Updated: 2011-09-20 20:09:09
    Quite often when developing big web apps you may need to use mod_rewrite to generate SEO friendly URLs from a string of text, Very similar to the way Word press generates URLs for blog posts. The Code Below is the … Continue reading

  • Build a simple animated progress bar with tooltip

    Updated: 2011-09-20 20:09:07
    Here’s a very basic example of how to code up an animated progress bar with tooltip using the Tipsy tooltip plugin. First I started out in Photoshop and designed the basic progress bar, you can download the PSD file for … Continue reading

  • 3 sets of die cut business cards to give away!

    Updated: 2011-09-20 20:09:05
    We’re giving away 1 set of die cut business cards to three lucky winners courtesy of UPrinting. Die-cut business cards, like standard business cards, include your name or business contact details. What makes them different are the unique and attractive … Continue reading

  • Creating Automatic MySQL Database backups

    Updated: 2011-09-20 20:09:03
    Every database needs to be backed up and if you’re currently doing it manually you can stop because there’s a simple solution using PHP. With this script you can either pass a specific table to backup or choose to backup … Continue reading

  • PHP Language Detection

    Updated: 2011-09-20 20:09:01
    I was looking for a simple way to automatically detect a users language using PHP and came across this interesting snippet which does just that. It uses the PHP superglobal ‘HTTP_ACCEPT_LANGUAGE’ which returns something like this for me “en-US,en;q=0.8″. This … Continue reading

  • jQuery UI Slider

    Updated: 2011-09-20 20:09:00
    I’ve been hugely inspired recently by the design work of Orman Clark from Premiumpixels.com and his generous selection of top quality PSD downloads. after seeing this beautiful design of a button and slider set I was eager to code up … Continue reading

  • How to Create Automatically Numbered Lists, Bullet Point Lists and Definition Lists in HTML

    Updated: 2011-09-20 20:08:50
    Learn how to create lists that are automatically numbered by the web browser, bullet point lists as well as definition lists in HTML. This is chapter 3 of the HTML tutorial.

  • Dreamweaver CS5.5 Tutorial: How to Design a Website with Dreamweaver CS 5.5

    Updated: 2011-09-20 20:08:50
    As many of you already know, the newest version of the well-known Dreamweaver web editor has been released. Learn how to use this editor to create a website with this tutorial, Dreamweaver CS5.5 Tutorial: How to Design a Website with Dreamweaver CS 5.5.

  • The HTML Tags that Deal with Text (HTML Tutorial Chapter 2)

    Updated: 2011-09-20 20:08:49
    If you have always wanted to learn HTML, but have found all the various guides available too intimidating, give this series a try. It's designed for the layperson, and explains everything in plain English. This newest article is chapter 2 of the HTML Tutorial for beginners.

  • Should I Learn HTML or Just Use a WYSIWYG Web Editor? Pros and Cons of Using a Visual Web Editor vs Learning HTML

    Updated: 2011-09-20 20:08:48
    Do you lose something by not knowing HTML? Should every webmaster learn HTML or is it enough to just use a visual (WYSIWYG) web editor? This article addresses that question.

  • How to Restore or Reopen the Properties Panel (or the CSS Styles or Files Panel) in Dreamweaver

    Updated: 2011-09-20 20:08:46
    Have you accidentally hidden one or more panels in your Dreamweaver window, such as the Properties, CSS Styles or Files panel, and don't know how to restore them? This article shows you how to reset the layout of your Dreamweaver window to its original state, so that you can continue to create your website using the interface that you're accustomed to.

  • How to Link to Other Websites and Add New Web Pages to Your Site with NetObjects Fusion 11

    Updated: 2011-09-20 20:08:45
    This 4th chapter of the NetObjects Fusion 11 tutorial shows you how you can add new pages to your website and link to other websites (as well as to other pages on your own site).

  • How to Switch Between the Liquid and Fixed Layout Templates in Dreamweaver

    Updated: 2011-09-20 20:08:43
    Changing your website from a liquid layout to a fixed layout, and vice versa, is easy with the Dreamweaver web editor. This article shows you how you can do it in one place, with the editor automatically taking care of updating all your pages to the new layout without your having to redo everything manually.

  • Should You Choose a Linux or a Windows Web Hosting Package? Is There Such a Thing as a Mac Web Host?

    Updated: 2011-09-20 20:08:40
    Those who are thinking of starting a website will have noticed that some web hosts advertise Linux packages, others Windows, still others FreeBSD. Should you choose a Linux web host or a Windows one? What if you have a Mac? When do you need a Windows web host and when a Linux or FreeBSD? This article attempts to answer these questions.

  • How to Make / Create Your Own Website: A Beginner's A-Z Guide (Updated)

    Updated: 2011-09-20 20:08:39
    The popular Beginner's A-Z Guide on Starting/Creating Your Own Website has been updated. In particular, the section on making money from your website has been augmented so that it now has information on how to put an order form or "Buy Now" button on your site in addition to the existing tutorial on placing advertisements and collecting credit card payments.If you're thinking of starting your own website, this guide will take you through all the steps necessary, in an easy-to-understand way.

  • What is HTML, CSS, JavaScript, PHP and Perl? Do I Need to Learn Them to Create a Website?

    Updated: 2011-09-20 20:08:38
    If you're thinking of starting your own website, and are stumped by terms like HTML, CSS, JavaScript, PHP and Perl, take a look at this article, explaining them, as well as describing what you'll need to do to create a website.

  • Web Development News Week 36 and 37, July 2011

    Updated: 2011-09-19 16:52:36
    M att S nider.com RSS Find Table of Contents Tags Archives Options Set Width 100 About Popular Posts CSS String Truncation with Ellipsis Tips for Starting Your First Djang YUI 3 Radial Menu Gallery How To Efficiently Search JSON Legacy Support For HTML5 Forms Sites That Matter A List Apart Dojo Internet Explorer Blog JavaScript Magazine John Resig jQuery.com Nicholas C . Zakas Online Node.JS Prototype JS QuirksMode YUI Library Web Development News Week 36 and 37, July 2011 by Matt Snider September 19, 2011 8:52 am Web development news for the 36th and 37th week of 2011 : JavaScript JavaScript Weekly , Issue 43 September 9, 2011 JavaScript Weekly , Issue 44 September 16, 2011 New jQuery and Mootools releases , some information about Google's JavaScript replacement language Dart , Another

  • Google Launches Initial Google+ API

    Updated: 2011-09-15 21:04:33
    Subscribe Advertise Contact Us About Us Register home tutorials forums reviews blog jobs Top Links ASCII Chart Blog Color Chart Error Codes Meta Tags SEO Resources Scripting Forum search Categories Book Reviews CSS Tutorials Design Topics Design Tutorials General Tutorials Graphic Tool Reviews Hardware HTML Tutorials HTMLCenter News Interviews Javascript Tutorials PHP Tutorials Programming Tutorials Software Reviews Usability Tutorials VBScript Tutorials Web 2.0 Web News Web Software Reviews Sep 15 Google Launches Initial Google+ API Written by : Allen Tweet Google’s latest attempt at social networking , Google+ , now has a new first-cut at a developer API . The Google+ Platform blog has info on the release of the new . API Startup blogger Robert Scoble put together a list of some of the

  • Please Stop Using cURL in WordPress Plugins

    Updated: 2011-09-10 04:23:07
    Subscribe Advertise Contact Us About Us Register home tutorials forums reviews blog jobs Top Links ASCII Chart Blog Color Chart Error Codes Meta Tags SEO Resources Scripting Forum search Categories Book Reviews CSS Tutorials Design Topics Design Tutorials General Tutorials Graphic Tool Reviews Hardware HTML Tutorials HTMLCenter News Interviews Javascript Tutorials PHP Tutorials Programming Tutorials Software Reviews Usability Tutorials VBScript Tutorials Web 2.0 Web News Web Software Reviews Sep 9 Please Stop Using cURL in WordPress Plugins Written by : Curtiss Tweet Unfortunately , I keep finding WordPress plugins that try to call cURL functions directly . Unfortunately , not only do these plugins fail to work if cURL isn’t installed , it throws a fatal PHP error in the . process The

  • Web Development News Week 35, July 2011

    Updated: 2011-09-07 08:13:37
    M att S nider.com RSS Find Table of Contents Tags Archives Options Set Width 100 About Popular Posts CSS String Truncation with Ellipsis Tips for Starting Your First Djang YUI 3 Radial Menu Gallery How To Efficiently Search JSON Legacy Support For HTML5 Forms Sites That Matter A List Apart Dojo Internet Explorer Blog JavaScript Magazine John Resig jQuery.com Nicholas C . Zakas Online Node.JS Prototype JS QuirksMode YUI Library Web Development News Week 35, July 2011 by Matt Snider September 7, 2011 12:13 am Web development news for the 35th week of 2011 : JavaScript JavaScript Weekly , Issue 42 September 2, 2011 FireFox's JaegerMonkey JIT boasts massive JavaScript performance improvements , new book by Alex MacCaw that covers how to built a state-of-the-art web application , Localno.de is

Current Feed Items | Previous Months Items

Aug 2011 | Jul 2011 | Jun 2011 | May 2011 | Apr 2011 | Mar 2011